home *** CD-ROM | disk | FTP | other *** search
- /*
- * For legal stuff see the file COPYRIGHT
- */
- typedef enum {
- PathCreationOk, /* success */
- PathMkdirFailure, /* mkdir(2) failed */
- PathStatFailure, /* stat(2) failed */
- PathNotDirectory, /* the path exists, but isn't a directory */
- } CreatePathErr;
-
- extern CreatePathErr createPath( const char *path, int mode );
-